home *** CD-ROM | disk | FTP | other *** search
/ United Public Domain Gold 2 / United Public Domain Gold 2.iso / devs / mountlist < prev    next >
Text File  |  1978-01-11  |  3KB  |  135 lines

  1. /* MountList for V1.3 */
  2.  
  3. NULL:
  4.  Handler = L:Null-Handler
  5.  Stacksize = 500
  6.  Priority = 5
  7.  GlobVec = 1
  8. #
  9.  
  10. /*  Mount Entry for the new Console Handler */
  11.  
  12. NEWCON: 
  13.     Handler = L:Newcon-Handler
  14.     Priority = 5
  15.     StackSize = 1000
  16. #
  17.  
  18. CON: 
  19.     Handler = L:Newcon-Handler
  20.     Priority = 5
  21.     StackSize = 1000
  22. #
  23.  
  24. /* This is an example of a non-filing system mount using a handler written
  25.    in C.
  26. */
  27.  
  28. SPEAK:     
  29.     Handler = L:Speak-Handler
  30.     Stacksize = 6000
  31.     Priority = 5
  32.     GlobVec = -1
  33. #
  34.  
  35. /*  This is an example of an alternative type of non-filing device mount,
  36.     used to mount the non-buffered serial handler
  37. */
  38.  
  39. AUX:
  40.     Handler = L:Aux-Handler
  41.     Stacksize = 1000
  42.     Priority = 5
  43. #
  44. /*  This is a non-filing system device */
  45.  
  46. PIPE:      
  47.     Handler = L:Pipe-Handler
  48.     Stacksize = 6000
  49.     Priority = 5
  50.     GlobVec = -1
  51. #
  52.  
  53. /* An example mount entry using the fast file system 
  54.    Df1: when accessed as fast: reads ffs disks
  55. */
  56.  
  57. FAST:
  58.     Device             = trackdisk.device
  59.     FileSystem         = l:FastFileSystem
  60.     Globvec            = -1
  61.     DosType            = 0x444F5301
  62.     Unit               = 1
  63.     Flags              = 0
  64.     Surfaces           = 2
  65.     BlocksPerTrack     = 11
  66.     Reserved        = 2
  67.     Interleave         = 1
  68.     LowCyl             = 0  
  69.     HighCyl            = 79
  70.     Buffers            = 5
  71.     BufMemType         = 1
  72.     Stacksize        = 5000
  73. #
  74.  
  75. /*  Mount Entry for the new Console Handler   */
  76.  
  77. IBMB:   FileSystem = L:MessyFileSystem /* or messydos:l/MessyFileSystem */
  78.    Device = messydisk.device      /* or messydos:devs/messydisk.device */
  79.    Unit = 1
  80.    Flags = 0
  81.    LowCyl = 0 ; HighCyl = 79
  82.    Reserved = 0
  83.    Surfaces = 2
  84.    BlocksPerTrack = 9
  85.    Buffers = 5
  86.    BufMemType = 1   /* messydisk needs no chip mem */
  87.    BootPri = 0
  88.    Stacksize = 4096
  89.    Priority = 5
  90.    GlobVec  = -1
  91.         Mount = 1
  92. #
  93. /*  Amiga 500 501 Memory / Clock / ST506 drive interface    */
  94. /*  mountlist generated by (and for use only with)         */
  95. /*  NECutils - Lansdown Software ST506 Utility program     */
  96.  
  97.  
  98.  
  99. work:    Device      = hdisc.device
  100.     Unit        = 0
  101.     Flags       = 0
  102.     Surfaces    = 4
  103.     BlocksPerTrack = 17
  104.     Reserved    = 2
  105.     LowCyl      = 2
  106.     HighCyl     = 302
  107.     Buffers     = 20
  108.     BufMemType  = 1
  109.     FileSystem  = L:FastFileSystem
  110.     MaxTransfer = 130048
  111.     GlobVec     = -1
  112.     StackSize   = 4000
  113.     DosType     = 0x444f5301
  114. #
  115.  
  116.  
  117.  
  118. games:    Device      = hdisc.device
  119.     Unit        = 0
  120.     Flags       = 0
  121.     Surfaces    = 4
  122.     BlocksPerTrack = 17
  123.     Reserved    = 2
  124.     LowCyl      = 303
  125.     HighCyl     = 614
  126.     Buffers     = 10
  127.     BufMemType  = 1
  128.     FileSystem  = L:FastFileSystem
  129.     MaxTransfer = 130048
  130.     GlobVec     = -1
  131.     StackSize   = 4000
  132.     DosType     = 0x444f5301
  133. #
  134.  
  135.